home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjdlg.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-05  |  780 b   |  30 lines

  1. #ifndef _DTJDLG_HPP
  2. #define _DTJDLG_HPP
  3.  
  4. #include "dtjwnd.hpp"
  5.  
  6. class METAEXPORTCLASSDEF DTJDialog : public DTJWindow
  7. {
  8.     public:
  9.         DTJDialog( const MetaObject * pMetaObj );
  10.         virtual ~DTJDialog();
  11.         
  12.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  13.                    ostream& src,
  14.                    MMCodeGenerationParms& pGenParms );
  15.  
  16.         virtual void GenerateExtraProperties( ostream& src,
  17.                     MMJCodeGenerationParms* pGenParms ) const;
  18.  
  19.     protected:
  20.     virtual void GenerateConstructor( ostream& src,
  21.                             MMJCodeGenerationParms* pGenParms ) const;
  22. };
  23.  
  24.  
  25. // needed for mdreader
  26. typedef DTJDialog DTjava__dot__awt__dot__Dialog__dot__102;
  27. typedef WForm     java__dot__awt__dot__Dialog__dot__102;
  28.  
  29. #endif // _DTJDLG_HPP
  30.